HTMLify
Typing Platform
Views: 446 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> <title>monkeytype</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300&display=swap" rel="stylesheet"> </head> <body> <div class="main"> <div class="header"> <div class="first"> <div class="cont">fonkeytype</div> <img class="styleimg" src="https://img.icons8.com/ios-filled/50/4a90e2/keyboard.png"/> <img class="styleimg" src="https://img.icons8.com/ios-glyphs/30/4a90e2/crown.png"/> <img class="styleimg" src="https://img.icons8.com/material-outlined/24/4a90e2/settings--v1.png"/> <img class="styleimg" src="https://img.icons8.com/ios-glyphs/30/4a90e2/user.png"/> </div> <div class="last"> <span class="set1">punctuation numbers</span> <span class="set2">time words quote zen custom</span> <span class="set3">15 30 60 120</span> </div> </div> <div class="typingspeed hidden ">30</div> <div class="section"> </div> <div class="footer"> <img class="github" src="https://img.icons8.com/ios-glyphs/30/4a90e2/source-code.png"/><div class="sep">Samarth Kadam</div> <img class="restart" src="https://img.icons8.com/ios-filled/50/4a90e2/restart--v1.png"/> </div> </div> <script src="script.js"></script> </body> </html> |